home *** CD-ROM | disk | FTP | other *** search
/ This Disc Bytes! / Power Computing - The Disc 2 - This Disc Bytes.ISO / mac / CodeWarrior 7 Lite for 68K / MacOS Support / Headers / Universal Headers / Packages.h < prev    next >
Text File  |  1995-07-06  |  2KB  |  71 lines

  1. /*
  2.      File:        Packages.h
  3.  
  4.      Contains:    Package Manager Interfaces.
  5.  
  6.      Version:    Technology:    System 7.5
  7.                  Package:    Universal Interfaces 2.1 in “MPW Latest” on ETO #18
  8.  
  9.      Copyright:    © 1984-1995 by Apple Computer, Inc.
  10.                  All rights reserved.
  11.  
  12.      Bugs?:        If you find a problem with this file, use the Apple Bug Reporter
  13.                  stack.  Include the file and version information (from above)
  14.                  in the problem description and send to:
  15.                      Internet:    apple.bugs@applelink.apple.com
  16.                      AppleLink:    APPLE.BUGS
  17.  
  18. */
  19.  
  20. #ifndef __PACKAGES__
  21. #define __PACKAGES__
  22.  
  23.  
  24. #ifndef __TYPES__
  25. #include <Types.h>
  26. #endif
  27. /*    #include <ConditionalMacros.h>                                */
  28.  
  29. #ifdef __cplusplus
  30. extern "C" {
  31. #endif
  32.  
  33. #if PRAGMA_ALIGN_SUPPORTED
  34. #pragma options align=mac68k
  35. #endif
  36.  
  37. #if PRAGMA_IMPORT_SUPPORTED
  38. #pragma import on
  39. #endif
  40.  
  41.  
  42. enum {
  43.     listMgr                        = 0,                            /* list manager */
  44.     dskInit                        = 2,                            /* Disk Initializaton */
  45.     stdFile                        = 3,                            /* Standard File */
  46.     flPoint                        = 4,                            /* Floating-Point Arithmetic */
  47.     trFunc                        = 5,                            /* Transcendental Functions */
  48.     intUtil                        = 6,                            /* International Utilities */
  49.     bdConv                        = 7,                            /* Binary/Decimal Conversion */
  50.     editionMgr                    = 11                            /* Edition Manager */
  51. };
  52.  
  53. extern pascal void InitPack(short packID)
  54.  ONEWORDINLINE(0xA9E5);
  55. extern pascal void InitAllPacks(void)
  56.  ONEWORDINLINE(0xA9E6);
  57.  
  58. #if PRAGMA_IMPORT_SUPPORTED
  59. #pragma import off
  60. #endif
  61.  
  62. #if PRAGMA_ALIGN_SUPPORTED
  63. #pragma options align=reset
  64. #endif
  65.  
  66. #ifdef __cplusplus
  67. }
  68. #endif
  69.  
  70. #endif /* __PACKAGES__ */
  71.